home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 28
/
Aminet 28 (1998)(GTI - Schatztruhe)[!][Dec 1998].iso
/
Aminet
/
text
/
edit
/
bah.lha
/
BAH3.3.1
/
Rexx
/
InsertMyVersion.bed
next >
Wrap
Text File
|
1998-10-16
|
459b
|
29 lines
/*
** $VER: InsertVersion.bed 1.0 (02.01.96)
**
** Insert an AmigaDOS version string at the current cursor position,
** taking the current filename and date.
*/
OPTIONS RESULTS
'RequestStr TITLE="Name"';
IF RC = 0 THEN DO
name = RESULT
END
ELSE DO
name = ""
END
date = DATE(e);
day = SUBSTR(date,1,2)
month = SUBSTR(date,4,2)
year = SUBSTR(date,7,2)
str = "$VER: " || name || " .0 (" || day || "." || month || "." || year || ")"
Text str
MoveLeft 13